feat: add rhdh-jira skill for Jira interaction via acli#13
Merged
schultzp2020 merged 1 commit intoMay 6, 2026
Merged
Conversation
Foundational agent skill for interacting with RHDH Jira projects (RHIDP, RHDHPLAN, RHDHBUGS, RHDHSUPP) using the Atlassian CLI (acli). Skill structure: - SKILL.md: Setup, project table, gotchas, error handling, routing - references/acli-commands.md: Command cheat sheet with flag gotchas - references/fields.md: Custom fields, labels, link types, components - references/workflows.md: Issue type state machines + exit criteria - references/templates.md: Jira wiki markup templates for all issue types - references/support.md: RHDHSupp/RHDHBUGS support case workflow - references/jql-patterns.md: 23+ tested JQL queries + board/sprint ref - scripts/setup.py: Verify acli install + auth - scripts/parse_issues.py: Flatten, enrich, filter acli JSON output All JQL queries tested live. All acli flags verified against --help. Two rounds of expert review (skill-writing + Jira QA) completed.
durandom
pushed a commit
to durandom/rhdh-skill
that referenced
this pull request
May 13, 2026
…t session - Add Gotcha redhat-developer#13: acli search silently truncates at 30 results - Rewrite Gotcha redhat-developer#9: acli cannot set custom fields (no --custom flag) - Expand Gotcha redhat-developer#8: labels also missing from basic field output - Fix error table: REST search returns 410, not a valid fallback - acli-commands.md: add warning about default page size, update examples to --limit 200 - graphql-queries.md: operation names are mandatory now, not future - rest-api-fallback.md: document 410 Gone on /rest/api/3/search - jql-patterns.md: cross-project parent=KEY only works via acli - refine.md: add refinement context (pre-release prep vs freeze triage)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Foundational agent skill for interacting with RHDH Jira projects (RHIDP, RHDHPLAN, RHDHBUGS, RHDHSUPP) using the Atlassian CLI (
acli). Designed as the base layer that future specialized skills can build on.Structure
SKILL.mdreferences/acli-commands.mdreferences/fields.mdreferences/workflows.mdreferences/templates.mdreferences/support.mdreferences/jql-patterns.mdscripts/setup.pyacli auth statuswhich lies with API tokens)scripts/parse_issues.pyacli search --jsoncan't return custom fieldsValidation
redhat.atlassian.net--helpKey design decisions
acli-commands.mdis a cheat sheet, not a full manual — trustsacli --helpfor detailsparse_issues.pysolves the fix: use CLAUDE_PLUGIN_ROOT for CLI path in skills #1 acli pain point: search can't return custom fields (team, story points, sprint). The script enriches viaacli viewper issue, then flattens and filters.